fixed an oops in the example application.
[feisty_meow.git] / core / applications / example_application / example_application.cpp
index f82f2f7873405e6900e8091bb933aac764ea6935..c6a27913e39d4f197ed2e3c35569fc9b322cc8e9 100644 (file)
@@ -65,7 +65,7 @@ public:
   virtual int execute();
     //!< the root of the program's activity.
 
-  int print_instructions() { LOG("no instructions at this time."); return 1; }
+  int print_instructions();
     //!< describes the available command line options for this program.
 
 private:
@@ -82,6 +82,13 @@ application_example::application_example()
 application_example::~application_example()
 {}
 
+int application_example::print_instructions()
+{
+  FUNCDEF("print_instructions");
+  LOG("no instructions at this time.");
+  return 1;
+}
+
 void application_example::handle_startup()
 {
   FUNCDEF("handle_startup");