Displaying 2 results from an estimated 2 matches for "classbase".
2011 Aug 09
1
[LLVMdev] Debug information for llvm-clang
...fo,DwarfDebug
classes in the clang.
They generate wide spectrum of data (For example I saw for Class type - base
classes /inheritance/friends etc.)
i want to see all the data for debugging after clang is executed..To check
this I made following example
class friendClass
{
public:
int x;
};
class classBase
{
public:
int get1(){return 1;}
int get2(){return 2;}
};
class classDer:public classBase
{
public:
int get1(){return 1;}
friend class frienClass;
};
int f()
{
classDer x;
return x.get1();
}
After C:\Windows\system32>clang C:\clangParam\clangExample.cpp -S -emit-llvm
-o -
I get followi...
2005 Jan 20
1
Bandwidth Management Scripts
I am a newbie to bandwidth management and trying to manage bandwidth
with classbased queuing using HTB (Hierarchical Token Bucket) as this
is simple and more efficient. In this process, I am trying to write a
config file that helps in managing queuing rules easy. Can anyone help
me wiith this.
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a....