File: paths.h

package info (click to toggle)
dssi-vst 0.8-2
  • links: PTS
  • area: contrib
  • in suites: squeeze
  • size: 268 kB
  • ctags: 520
  • sloc: cpp: 4,306; makefile: 59; sh: 8
file content (23 lines) | stat: -rw-r--r-- 378 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

// -*- c-basic-offset: 4 -*-

/*
  dssi-vst: a DSSI plugin wrapper for VST effects and instruments
  Copyright 2004-2008 Chris Cannam
*/

#ifndef _PATHS_H_
#define _PATHS_H_

#include <string>
#include <vector>

class Paths
{
public:
    static std::vector<std::string> getPath(std::string envVar,
					    std::string deflt,
					    std::string defltHomeRelPath);
};

#endif