portbase.h revision c8c36c18719f55a4fbb3c1efbad24a3644c0d54e
1/*
2 * Copyright (C) 2009 Wind River Systems.
3 */
4
5#ifndef __PORTBASE_H
6#define __PORTBASE_H
7
8#include <OMX_Core.h>
9#include <OMX_Component.h>
10
11class PortBase
12{
13public:
14    /*
15     * constructor & destructor
16     */
17    PortBase();
18    PortBase(const OMX_PARAM_PORTDEFINITIONTYPE *param);
19    virtual ~PortBase();
20
21    /* end of constructor & destructor */
22
23private:
24    /* common routines for constructor */
25    void __PortBase(void);
26};
27
28#endif /* __PORTBASE_H */
29