attributefactory.h
Go to the documentation of this file.
1 #ifndef ATTRIBUTEFACTORY_H
2 #define ATTRIBUTEFACTORY_H
3 
4 /*
5  * attributefactory.h
6  * Copyright (c) 2016 Georgetown University. All Rights Reserved.
7  */
8 
17 #include <string>
18 #include <iostream>
19 #include <fstream>
20 #include <stdexcept>
21 #include "attribute.h"
22 #include "nominal.h"
23 #include "numeric.h"
24 
25 using namespace std;
26 
28 
29  public:
30 
41  static Attribute *make( istream &in ) throw ( logic_error );
42 
43 }; // AttributeFactory class
44 
45 #endif
Definition: attribute.h:21
Definition: attributefactory.h:27