phantom.hh
1 /******************************************************************** 2 * Description: phantom.hh 3 * 4 * Derived from a work by Fred Proctor & Will Shackleford 5 * 6 * Author: 7 * License: LGPL Version 2 8 * System: Linux 9 * 10 * Copyright (c) 2004 All rights reserved. 11 * 12 * Last change: 13 ********************************************************************/ 14 15 #ifndef PHANTOM_HH 16 #define PHANTOM_HH 17 18 #include "cms.hh" 19 20 class PHANTOMMEM:public CMS { 21 public: 22 PHANTOMMEM(const char *bufline, const char *procline); 23 virtual ~ PHANTOMMEM(); 24 virtual CMS_STATUS main_access(void *_local, int *serial_number); 25 }; 26 27 #endif