]> Shamusworld >> Repos - architektonas/blobdiff - src/base/filterinterface.h
Removed unnecessary RS_ prefix from classes and whatnot.
[architektonas] / src / base / filterinterface.h
index 7addd6eb064ea66d32e4e3cbd99e8abd910a45ef..3150eea970581500e108f4e7365b79d5d81250d0 100644 (file)
@@ -6,20 +6,20 @@
 
 /**
  * This is the interface that must be implemented for all
- * format filter classes. The RS_FileIO class
+ * format filter classes. The FileIO class
  * uses the methods defined in here to interact with the format
  * filter classes.
  *
  * @author Andrew Mustun
  */
-class RS_FilterInterface
+class FilterInterface
 {
        public:
                /**
                * Constructor.
                */
-               RS_FilterInterface();
-               virtual ~RS_FilterInterface();
+               FilterInterface();
+               virtual ~FilterInterface();
 
                virtual bool canImport(RS2::FormatType t);
                virtual bool canExport(RS2::FormatType t);