Hall-D Software  alpha
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TTab_plugin_init.cc
Go to the documentation of this file.
1 // $Id$
2 //
3 // File: TTab_plugin_init.cc
4 // Created: Tue Jan 6 09:57:14 EST 2015
5 // Creator: davidl (on Darwin harriet.jlab.org 13.4.0 i386)
6 //
7 
8 #include <stdlib.h>
9 #include <iostream>
10 using namespace std;
11 
12 // Routine used to create our JEventProcessor
13 extern "C"{
14 void InitPlugin(void *arg){
15 
16  cout << endl;
17  cout << endl;
18  cout << "=== NOTICE: The TTab plugin has been converted into the TTAB ===" << endl;
19  cout << "=== statically linked library. You should no longer ===" << endl;
20  cout << "=== specify it as a plugin. Exiting now to make sure ===" << endl;
21  cout << "=== that you see this message. ===" << endl;
22  cout << endl;
23  cout << endl;
24  exit(0);
25 }
26 } // "C"
27 
InitPlugin_t InitPlugin