Skip to content

Commit b781983

Browse files
committed
Remove ApiMetadata though process
1 parent f3b8da6 commit b781983

File tree

2 files changed

+0
-21
lines changed

2 files changed

+0
-21
lines changed

include/fdp/objects/api_object.hxx

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -98,15 +98,5 @@ namespace FDP {
9898
bool is_empty();
9999
};
100100

101-
class ApiMetadata : public ApiObject
102-
{
103-
public:
104-
typedef std::shared_ptr< ApiMetadata > sptr;
105-
static sptr construct(void);
106-
protected:
107-
108-
ApiMetadata();
109-
private:
110-
};
111101
}
112102
#endif

src/objects/api_object.cxx

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -107,15 +107,4 @@ namespace FDP {
107107
std::string ApiObject::get_first_component() const{
108108
return obj_["components"][0].asString();
109109
}
110-
111-
ApiMetadata::ApiMetadata() : ApiObject()
112-
{
113-
}
114-
115-
ApiMetadata::sptr ApiMetadata::construct(void)
116-
{
117-
ApiMetadata::sptr pobj = ApiMetadata::sptr( new ApiMetadata() );
118-
return pobj;
119-
}
120-
121110
};

0 commit comments

Comments
 (0)