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

Subversion Repositories riscv_vhdl

[/] [riscv_vhdl/] [trunk/] [examples/] [common/] [iface.h] - Rev 5

Compare with Previous | Blame | View Log

//****************************************************************************
// Entity:      GNSS channels firmware
// Contact:     chief@gnss-sensor.com
// Description:	Virtual Firmware interface for any implementation
//****************************************************************************
 
#ifndef __IFACE_H__
#define __IFACE_H__
 
class IFace {
public:
    IFace(const char *name) : face_name_(name) {}
    virtual const char *getFaceName() { return face_name_; }
private:
    const char *face_name_;
};
 
#endif//__IFACE_H__
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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