Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
hfedcba committed Nov 23, 2016
2 parents 5dd1118 + b4ade62 commit 61b60a0
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion getVersion.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cat > "$dir/libhomegear-base-version.cpp" <<-'EOF'
int main(int argc, char** argv)
{
std::cout << BaseLib::Obj::version() << std::endl;
std::cout << BaseLib::SharedObjects::version() << std::endl;
return 0;
}
EOF
Expand Down
2 changes: 1 addition & 1 deletion src/Factory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include "../config.h"
#include "GD.h"

BaseLib::Systems::DeviceFamily* MyFactory::createDeviceFamily(BaseLib::Obj* bl, BaseLib::Systems::DeviceFamily::IFamilyEventSink* eventHandler)
BaseLib::Systems::DeviceFamily* MyFactory::createDeviceFamily(BaseLib::SharedObjects* bl, BaseLib::Systems::DeviceFamily::IFamilyEventSink* eventHandler)
{
return new MyFamily::MyFamily(bl, eventHandler);
}
Expand Down
2 changes: 1 addition & 1 deletion src/Factory.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
class MyFactory : BaseLib::Systems::SystemFactory
{
public:
virtual BaseLib::Systems::DeviceFamily* createDeviceFamily(BaseLib::Obj* bl, BaseLib::Systems::DeviceFamily::IFamilyEventSink* eventHandler);
virtual BaseLib::Systems::DeviceFamily* createDeviceFamily(BaseLib::SharedObjects* bl, BaseLib::Systems::DeviceFamily::IFamilyEventSink* eventHandler);
};

extern "C" std::string getVersion();
Expand Down
2 changes: 1 addition & 1 deletion src/GD.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

namespace MyFamily
{
BaseLib::Obj* GD::bl = nullptr;
BaseLib::SharedObjects* GD::bl = nullptr;
MyFamily* GD::family = nullptr;
BaseLib::Output GD::out;
}
2 changes: 1 addition & 1 deletion src/GD.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class GD
public:
virtual ~GD();

static BaseLib::Obj* bl;
static BaseLib::SharedObjects* bl;
static MyFamily* family;
static BaseLib::Output out;
private:
Expand Down
2 changes: 1 addition & 1 deletion src/MyFamily.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
namespace MyFamily
{

MyFamily::MyFamily(BaseLib::Obj* bl, BaseLib::Systems::DeviceFamily::IFamilyEventSink* eventHandler) : BaseLib::Systems::DeviceFamily(bl, eventHandler, MY_FAMILY_ID, MY_FAMILY_NAME)
MyFamily::MyFamily(BaseLib::SharedObjects* bl, BaseLib::Systems::DeviceFamily::IFamilyEventSink* eventHandler) : BaseLib::Systems::DeviceFamily(bl, eventHandler, MY_FAMILY_ID, MY_FAMILY_NAME)
{
GD::bl = bl;
GD::family = this;
Expand Down
2 changes: 1 addition & 1 deletion src/MyFamily.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class MyCentral;
class MyFamily : public BaseLib::Systems::DeviceFamily
{
public:
MyFamily(BaseLib::Obj* bl, BaseLib::Systems::DeviceFamily::IFamilyEventSink* eventHandler);
MyFamily(BaseLib::SharedObjects* bl, BaseLib::Systems::DeviceFamily::IFamilyEventSink* eventHandler);
virtual ~MyFamily();
virtual void dispose();

Expand Down

0 comments on commit 61b60a0

Please sign in to comment.