Doxygen
Loading...
Searching...
No Matches
vhdlstring.h File Reference
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "VhdlParser.h"
+ Include dependency graph for vhdlstring.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  vhdl::parser::TokenParser
 
class  VhdlString
 Minimal string class with std::string like behavior that fulfills the JavaCC string requirements. More...
 

Namespaces

namespace  vhdl
 Token literal values and constants.
 
namespace  vhdl::parser
 

Functions

VhdlString operator+ (const char *s, VhdlString v)
 

Function Documentation

◆ operator+()

VhdlString operator+ ( const char * s,
VhdlString v )
inline

Definition at line 126 of file vhdlstring.h.

126{ return VhdlString(s).append(v); }
Minimal string class with std::string like behavior that fulfills the JavaCC string requirements.
Definition vhdlstring.h:34
VhdlString & append(const char *s, int size)
Definition vhdlstring.h:76

References VhdlString::append().