OCBNamedInterfaceImpl.h 898 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * Copyright (c) 2017 committers of YAKINDU and others.
  3. * All rights reserved. This program and the accompanying materials
  4. * are made available under the terms of the Eclipse Public License v1.0
  5. * which accompanies this distribution, and is available at
  6. * http://www.eclipse.org/legal/epl-v10.html
  7. *
  8. * Contributors:
  9. * committers of YAKINDU - initial API and implementation
  10. */
  11. #ifndef SRC_GEN_OCBNAMEDINTERFACEIMPL_H_
  12. #define SRC_GEN_OCBNAMEDINTERFACEIMPL_H_
  13. #include "UnimplementedOCB.h"
  14. class OCBNamedInterfaceImpl : public UnimplementedOCB::SCI_Named_OCB {
  15. public:
  16. OCBNamedInterfaceImpl();
  17. virtual ~OCBNamedInterfaceImpl();
  18. void namedInterfaceOperation();
  19. };
  20. OCBNamedInterfaceImpl::OCBNamedInterfaceImpl() {
  21. }
  22. OCBNamedInterfaceImpl::~OCBNamedInterfaceImpl() {
  23. }
  24. void OCBNamedInterfaceImpl::namedInterfaceOperation(){}
  25. #endif /* SRC_GEN_OCBNAMEDINTERFACEIMPL_H_ */