File: b.cpp

package info (click to toggle)
mlpack 4.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 32,060 kB
  • sloc: cpp: 233,202; python: 1,940; sh: 1,201; lisp: 414; makefile: 85
file content (20 lines) | stat: -rw-r--r-- 457 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "b.hpp"

// Include the static implementation of all STB functions.
#define STB_IMAGE_STATIC
#define STB_IMAGE_IMPLEMENTATION
#define STB_IMAGE_WRITE_STATIC
#define STB_IMAGE_WRITE_IMPLEMENTATION

#ifdef MLPACK_HAS_NO_STB_DIR
  #include <stb_image.h>
  #include <stb_image_write.h>
#else
  #include <stb/stb_image.h>
  #include <stb/stb_image_write.h>
#endif

void B::B()
{
  // Do nothing, just to check if the STB library is a working version.
}