fixed an oops in the example application.
[feisty_meow.git] / core / applications / example_application / example_application.cpp
index 767b453058caa7a09c4595cf39dd9d6758066c50..c6a27913e39d4f197ed2e3c35569fc9b322cc8e9 100644 (file)
@@ -65,8 +65,8 @@ public:
   virtual int execute();
     //!< the root of the program's activity.
 
-  void print_instructions();
-    //!< describes the available command line options for the ULS.
+  int print_instructions();
+    //!< describes the available command line options for this program.
 
 private:
   singleton_application _app_lock;  //!< our inter-application synchronizer.
@@ -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");