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