OpenCores
URL https://opencores.org/ocsvn/riscv_vhdl/riscv_vhdl/trunk

Subversion Repositories riscv_vhdl

[/] [riscv_vhdl/] [trunk/] [examples/] [common/] [iface.h] - Blame information for rev 5

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 5 sergeykhbr
//****************************************************************************
2
// Entity:      GNSS channels firmware
3
// Contact:     chief@gnss-sensor.com
4
// Description: Virtual Firmware interface for any implementation
5
//****************************************************************************
6
 
7
#ifndef __IFACE_H__
8
#define __IFACE_H__
9
 
10
class IFace {
11
public:
12
    IFace(const char *name) : face_name_(name) {}
13
    virtual const char *getFaceName() { return face_name_; }
14
private:
15
    const char *face_name_;
16
};
17
 
18
#endif//__IFACE_H__

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.