Remove dynamic exceptions
[anna.git] / example / dbos / workdir / filesystem / Directory.hpp
index 95490d7..67faedd 100644 (file)
@@ -22,12 +22,12 @@ public:
    Directory (const std::string& name) : Abstract (ClassType::Directory, name) {;}
    Directory (Directory* parent, const std::string& name) : Abstract (ClassType::Directory, parent, name) {;}
   
-   void print (const int level = 0) const throw ();
+   void print (const int level = 0) const ;
    
-   static Directory* down_cast (Abstract* abstract) throw () {
+   static Directory* down_cast (Abstract* abstract) {
       return (abstract->getClassType () == ClassType::Directory) ? static_cast <Directory*> (abstract): NULL;
    }
-   static const Directory* down_cast (const Abstract* abstract) throw () {
+   static const Directory* down_cast (const Abstract* abstract) {
       return (abstract->getClassType () == ClassType::Directory) ? static_cast <const Directory*> (abstract): NULL;
    }
 };