~bzoltan/kubuntu-packaging/decouple_cmake_plugin

« back to all changes in this revision

Viewing changes to src/shared/qbs/tests/auto/blackbox/testdata/dynamicLibs/lib4.cpp

  • Committer: Timo Jyrinki
  • Date: 2013-11-15 12:25:23 UTC
  • mfrom: (1.1.28)
  • Revision ID: timo.jyrinki@canonical.com-20131115122523-i2kyamsu4gs2mu1m
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "lib4.h"
 
2
 
 
3
TestMe::TestMe()
 
4
{
 
5
}
 
6
 
 
7
void TestMe::hello1() const
 
8
{
 
9
    puts("lib4 says hello!");
 
10
}
 
11
 
 
12
void TestMe::hello2Impl() const
 
13
{
 
14
    puts("lib4 says hello inline!");
 
15
}