Example #1
0
void FileConstHandle::reload() {
  try {
    shared_->reload();
  }
  RMF_FILE_CATCH();
}
Example #2
0
std::string FileConstHandle::get_producer() const {
  try {
    return shared_->get_producer();
  }
  RMF_FILE_CATCH();
}
Example #3
0
std::string FileConstHandle::get_description() const {
  try {
    return shared_->get_description();
  }
  RMF_FILE_CATCH();
}
Example #4
0
void FileHandle::set_producer(std::string descr) {
  try {
    get_shared_data()->set_producer(descr);
  } RMF_FILE_CATCH( );
}
Example #5
0
void FileHandle::set_description(std::string descr) {
  try {
    get_shared_data()->set_description(descr);
  } RMF_FILE_CATCH( );
}
Example #6
0
void FileHandle::flush() {
  try {
    get_shared_data()->flush();
  } RMF_FILE_CATCH( );
}