Skip to content
Snippets Groups Projects
Commit 94a22436 authored by Valerio Pastore's avatar Valerio Pastore
Browse files

fix namespace

parent ef3f740e
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
#include <Base_Configurator.h>
#include <File_Archiver.h>
namespace inaf::oasbo::Archivers{
class FileArchiverConfigurator : public BaseConfigurator{
public:
......@@ -18,9 +18,9 @@ public:
std::map<std::string,std::string> getParams(){return this->params;}
std::string getDestination(){return this->params["destination"];}
inaf::oasbo::Archivers::BaseArchiver * createArchiver();
inaf::oasbo::Archivers::FileArchiver * createFileArchiver();
void createFileArchiver(inaf::oasbo::Archivers::FileArchiver &);
BaseArchiver * createArchiver();
FileArchiver * createFileArchiver();
void createFileArchiver(FileArchiver &);
......@@ -30,5 +30,5 @@ public:
}
};
}
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment