File: b.cpp

package info (click to toggle)
mlpack 4.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 31,272 kB
  • sloc: cpp: 226,039; python: 1,934; sh: 1,198; lisp: 414; makefile: 85
file content (20 lines) | stat: -rw-r--r-- 457 bytes parent folder | download | duplicates (2)
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.
}