/usr/include/trilinos/Pike_DataTransfer.hpp is in libtrilinos-pike-dev 12.10.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | #ifndef PIKE_DATA_TRANSFER_HPP
#define PIKE_DATA_TRANSFER_HPP
#include "Pike_BlackBox_config.hpp"
#include <string>
#include <vector>
namespace pike {
class Solver;
class BlackBoxModelEvaluator;
class DataTransfer {
public:
virtual ~DataTransfer() {};
virtual std::string name() const = 0;
virtual bool doTransfer(const pike::Solver& solver) = 0;
virtual bool transferSucceeded() const = 0;
virtual const std::vector<std::string>& getSourceModelNames() const = 0;
virtual const std::vector<std::string>& getTargetModelNames() const = 0;
};
}
#endif
|