mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 19:32:54 +00:00
17 lines
111 B
C++
17 lines
111 B
C++
#include "foo.h"
|
|
#include "bar.h"
|
|
|
|
void Foo::ctx1()
|
|
{
|
|
Foo f;
|
|
Bar b;
|
|
}
|
|
|
|
void ctx2()
|
|
{
|
|
Foo f;
|
|
Bar b;
|
|
}
|
|
|
|
BAR
|
|
|