aboutsummaryrefslogtreecommitdiff
path: root/common/relationship-query/driver.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2012-04-23 16:48:03 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2012-04-23 16:48:03 +0200
commit635d11d74cd873e6f53d05b1d9f091ae112402a5 (patch)
tree49a9b835aecba11ff666a7d5c34fd1a248881e78 /common/relationship-query/driver.cxx
parentadfa9c5ffccdd4e5db8c545d9106c0eb1d7bdcb8 (diff)
Polymorphic inheritance support
Diffstat (limited to 'common/relationship-query/driver.cxx')
-rw-r--r--common/relationship-query/driver.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/relationship-query/driver.cxx b/common/relationship-query/driver.cxx
index 58bbef5..ed96223 100644
--- a/common/relationship-query/driver.cxx
+++ b/common/relationship-query/driver.cxx
@@ -39,8 +39,8 @@ main (int argc, char* argv[])
shared_ptr<country> us (new country ("US", "United States"));
shared_ptr<country> se (new country ("SE", "Sweden"));
- shared_ptr<employer> st (new employer ("Simple Tech, Inc"));
- shared_ptr<employer> ct (new employer ("Complex Tech, Inc"));
+ shared_ptr<employer> st (new employer ("Simple Tech, Inc", ca));
+ shared_ptr<employer> ct (new employer ("Complex Tech, Inc", us));
// person
//