mirror of
https://github.com/nasa/trick.git
synced 2024-12-19 13:17:55 +00:00
16 lines
378 B
C++
16 lines
378 B
C++
|
|
#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 ) ;
|
|
|