Skip to content

Commit

Permalink
changed libpd C++ wrapper header filename exts to .hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
danomatika committed Nov 27, 2011
1 parent 24a1f47 commit 26a143f
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
16 changes: 8 additions & 8 deletions example/ofxPdExample.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -135,11 +135,11 @@

/* Begin PBXFileReference section */
3000D8E8145D1029009FC3EC /* PdBase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PdBase.cpp; sourceTree = "<group>"; };
3000D8E9145D1029009FC3EC /* PdBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PdBase.h; sourceTree = "<group>"; };
3000D8EA145D1029009FC3EC /* PdMidiReceiver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PdMidiReceiver.h; sourceTree = "<group>"; };
3000D8EB145D1029009FC3EC /* PdReceiver.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PdReceiver.h; sourceTree = "<group>"; };
3000D8E9145D1029009FC3EC /* PdBase.hpp */ = {isa = PBXFileReference; fileEncoding = 4; path = PdBase.hpp; sourceTree = "<group>"; };
3000D8EA145D1029009FC3EC /* PdMidiReceiver.hpp */ = {isa = PBXFileReference; fileEncoding = 4; path = PdMidiReceiver.hpp; sourceTree = "<group>"; };
3000D8EB145D1029009FC3EC /* PdReceiver.hpp */ = {isa = PBXFileReference; fileEncoding = 4; path = PdReceiver.hpp; sourceTree = "<group>"; };
3000D8EC145D1029009FC3EC /* PdTypes.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PdTypes.cpp; sourceTree = "<group>"; };
3000D8ED145D1029009FC3EC /* PdTypes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PdTypes.h; sourceTree = "<group>"; };
3000D8ED145D1029009FC3EC /* PdTypes.hpp */ = {isa = PBXFileReference; fileEncoding = 4; path = PdTypes.hpp; sourceTree = "<group>"; };
30B2D0BF142B2C7A000AB5E1 /* AppCore.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AppCore.cpp; sourceTree = "<group>"; };
30B2D0C0142B2C7A000AB5E1 /* AppCore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppCore.h; sourceTree = "<group>"; };
30B2D0C4142B2CA5000AB5E1 /* ofxPd.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ofxPd.cpp; sourceTree = "<group>"; };
Expand Down Expand Up @@ -296,11 +296,11 @@
isa = PBXGroup;
children = (
3000D8E8145D1029009FC3EC /* PdBase.cpp */,
3000D8E9145D1029009FC3EC /* PdBase.h */,
3000D8EA145D1029009FC3EC /* PdMidiReceiver.h */,
3000D8EB145D1029009FC3EC /* PdReceiver.h */,
3000D8E9145D1029009FC3EC /* PdBase.hpp */,
3000D8EA145D1029009FC3EC /* PdMidiReceiver.hpp */,
3000D8EB145D1029009FC3EC /* PdReceiver.hpp */,
3000D8EC145D1029009FC3EC /* PdTypes.cpp */,
3000D8ED145D1029009FC3EC /* PdTypes.h */,
3000D8ED145D1029009FC3EC /* PdTypes.hpp */,
);
path = cpp;
sourceTree = "<group>";
Expand Down
2 changes: 1 addition & 1 deletion src/ofxPd.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#include <set>
#include <Poco/Mutex.h>

#include "PdBase.h"
#include "PdBase.hpp"

///
/// a Pure Data instance
Expand Down
2 changes: 1 addition & 1 deletion src/pd/cpp/PdBase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See http://gitorious.org/pdlib/pages/Libpd for documentation
*
*/
#include "PdBase.h"
#include "PdBase.hpp"

#include <iostream>

Expand Down
4 changes: 2 additions & 2 deletions src/pd/cpp/PdBase.h → src/pd/cpp/PdBase.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
#include <map>

#include "z_libpd.h"
#include "PdReceiver.h"
#include "PdMidiReceiver.h"
#include "PdReceiver.hpp"
#include "PdMidiReceiver.hpp"

#ifndef HAVE_UNISTD_H
#define HAVE_UNISTD_H
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/pd/cpp/PdReceiver.h → src/pd/cpp/PdReceiver.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/
#pragma once

#include "PdTypes.h"
#include "PdTypes.hpp"

namespace pd {

Expand Down
2 changes: 1 addition & 1 deletion src/pd/cpp/PdTypes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* See https://github.com/danomatika/ofxPd for documentation
*
*/
#include "PdTypes.h"
#include "PdTypes.hpp"

#include <iostream>
#include <sstream>
Expand Down
File renamed without changes.

0 comments on commit 26a143f

Please sign in to comment.