~karsten.klagges/openwns-library/scheduler-interface

« back to all changes in this revision

Viewing changes to src/probe/bus/Context.cpp

  • Committer: Karsten Klagges
  • Date: 2009-01-29 13:42:36 UTC
  • mfrom: (93.1.4 openwns-library)
  • Revision ID: kks@comnets.rwth-aachen.de-20090129134236-f157l4yafuoywtrz
merge with trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
51
51
}
52
52
 
53
53
void
 
54
Context::insert(const std::string& key, int value)
 
55
{
 
56
    insertInt(key, value);
 
57
}
 
58
 
 
59
void
 
60
Context::insert(const std::string& key, const std::string& value)
 
61
{
 
62
    insertString(key,value);
 
63
}
 
64
 
 
65
void
54
66
Context::insertInt(const std::string& key, int value)
55
67
{
56
68
    assure(Py_IsInitialized(), "Python interpreter is not initialized!");