~3v1n0/frame/gcc5-rebuild

« back to all changes in this revision

Viewing changes to test/regular/frame-x11-fixture.h

  • Committer: Daniel d'Andrada
  • Date: 2012-11-27 12:48:29 UTC
  • mfrom: (102.1.5 lp1080819)
  • Revision ID: daniel.dandrada@canonical.com-20121127124829-3fav4qcvcdqgffoj
Building the X11 backend is now optional

Frame must still be available and useful in platforms that doesn't have X11.
In such cases frame_backend.h is used.

configure script output has also been embellished

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef GTEST_FRAME_FIXTURE_H
2
 
#define GTEST_FRAME_FIXTURE_H
 
1
#ifndef GTEST_FRAME_X11_FIXTURE_H
 
2
#define GTEST_FRAME_X11_FIXTURE_H
3
3
 
4
4
#include <gtest/gtest.h>
5
5
#include "oif/frame.h"
6
6
#include "oif/frame_x11.h"
7
7
 
8
 
class FrameFixture : public ::testing::Test
 
8
class FrameX11Fixture : public ::testing::Test
9
9
{
10
10
 protected:
11
 
  FrameFixture();
 
11
  FrameX11Fixture();
12
12
 
13
13
  virtual void SetUp();
14
14
  virtual void TearDown();