2015-02-26 15:02:31 +00:00
|
|
|
|
2015-03-23 21:03:14 +00:00
|
|
|
#ifndef PRINTATTRIBUTESFACTORY_HH
|
|
|
|
#define PRINTATTRIBUTESFACTORY_HH
|
|
|
|
|
2015-02-26 15:02:31 +00:00
|
|
|
#include <iostream>
|
|
|
|
#include <fstream>
|
|
|
|
|
|
|
|
class PrintFileContentsBase ;
|
|
|
|
|
|
|
|
/** returns true if the command line attributes version is supported */
|
|
|
|
bool validAttributesVersion( int attr_version ) ;
|
|
|
|
|
|
|
|
/**
|
|
|
|
Returns a PrintFileContentsBase pointer to a version specific
|
|
|
|
print class based on attribute version
|
|
|
|
*/
|
|
|
|
PrintFileContentsBase * createFileContents( int attr_version ) ;
|
|
|
|
|
2015-03-23 21:03:14 +00:00
|
|
|
#endif
|