Use access function instad of %module-public-interface
[clinton/bobotpp.git] / source / Mask.H
index 2cd14ad..2414f9d 100644 (file)
@@ -13,7 +13,7 @@
 
 // You should have received a copy of the GNU General Public License
 // along with this program; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307, USA.
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
 #ifndef MASK_H
 #define MASK_H
@@ -25,15 +25,14 @@ class Mask {
 
 public:
   Mask(String);
-  Mask(Mask &);
 
-  String getMask();
+  String getMask() const;
   
-  bool matches(String);
-  bool matches(Mask &);
+  bool matches(String) const;
+  bool matches(const Mask &) const;
 
 protected:
-  bool match(const char *, const char *);
+  bool match(const char *, const char *) const;
 };
 
 #endif