OCBInternalImpl.h 842 B

12345678910111213141516171819202122232425262728293031323334353637
  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_OCBINTERNALIMPL_H_
  12. #define SRC_GEN_OCBINTERNALIMPL_H_
  13. #include "UnimplementedOCB.h"
  14. class OCBInternalImpl : public UnimplementedOCB::InternalSCI_OCB {
  15. public:
  16. OCBInternalImpl();
  17. virtual ~OCBInternalImpl();
  18. void internalInterfaceOperation();
  19. };
  20. OCBInternalImpl::OCBInternalImpl() {
  21. }
  22. OCBInternalImpl::~OCBInternalImpl() {
  23. }
  24. void OCBInternalImpl::internalInterfaceOperation() {
  25. }
  26. #endif /* SRC_GEN_OCBINTERNALIMPL_H_ */