Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

On this day we will focus on preparing the initial implementation of our first component. By the end of the day, we expect the groups to:

  •  Go through "HelloComponent" implementation for the assigned programming language
  •  Inheritance from IDL interface to be implemented
  •  Basic implementation of the methods
  •  Modifying CDB configuration in your test directory
  •  Exercising your component implementation from objexp and/or a PySimpleClient instance

...

Code Block
languagepy
linenumberstrue
collapsetrue
from Acspy.Clients.SimpleClient import PySimpleClient


client = PySimpleClient()

hc_py = c.getComponent("PY_HELLO_COMP")
hc_java = c.getComponent("JAVA_HELLO_COMP")
hc_cpp = c.getComponent("CPP_HELLO_COMP")

hc_py.printHello()
hc_java.printHello()
hc_cpp.printHello()

...