X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fbase%2Ffilterinterface.cpp;fp=src%2Fbase%2Ffilterinterface.cpp;h=3259794a437cc78efab2ad4700abf60b9239a804;hb=16354e0421b316a62c6b9f7b0b4f3b8cf6f06284;hp=4b7a09151c1ba28693074ccd993205c94c441b28;hpb=3239ef39dcee08fa6e8cd68cdf2727fc68cc7a8c;p=architektonas diff --git a/src/base/filterinterface.cpp b/src/base/filterinterface.cpp index 4b7a091..3259794 100644 --- a/src/base/filterinterface.cpp +++ b/src/base/filterinterface.cpp @@ -21,16 +21,16 @@ /** * Constructor. */ -RS_FilterInterface::RS_FilterInterface() +FilterInterface::FilterInterface() { - //std::cout << "RS_FilterInterface\n"; + //std::cout << "FilterInterface\n"; //graphic = NULL; } /** * Destructor. */ -/*virtual*/ RS_FilterInterface::~RS_FilterInterface() +/*virtual*/ FilterInterface::~FilterInterface() { } @@ -40,7 +40,7 @@ RS_FilterInterface::RS_FilterInterface() * @retval true if the filter can import the file type * @retval false otherwise. */ -/*virtual*/ bool RS_FilterInterface::canImport(RS2::FormatType t) +/*virtual*/ bool FilterInterface::canImport(RS2::FormatType t) { // return !(importFormats.find(t) == importFormats.end()); return (importFormats.indexOf(t) != -1); @@ -52,7 +52,7 @@ RS_FilterInterface::RS_FilterInterface() * @return true if the filter can export the file type, * false otherwise. */ -/*virtual*/ bool RS_FilterInterface::canExport(RS2::FormatType t) +/*virtual*/ bool FilterInterface::canExport(RS2::FormatType t) { // return !(exportFormats.find(t) == exportFormats.end()); return (exportFormats.indexOf(t) != -1); @@ -61,17 +61,17 @@ RS_FilterInterface::RS_FilterInterface() /** * Adds a file extension which can be imported by this filter. */ -void RS_FilterInterface::addImportFormat(RS2::FormatType type) +void FilterInterface::addImportFormat(RS2::FormatType type) { - RS_DEBUG->print("Filter can import %d", (int)type); + DEBUG->print("Filter can import %d", (int)type); importFormats += type; } /** * Adds a file extension which can be exported by this filter. */ -void RS_FilterInterface::addExportFormat(RS2::FormatType type) +void FilterInterface::addExportFormat(RS2::FormatType type) { - RS_DEBUG->print("Filter can export %d", (int)type); + DEBUG->print("Filter can export %d", (int)type); exportFormats += type; }