Skip to content

Commit

Permalink
add sparqlviewcontroller
Browse files Browse the repository at this point in the history
  • Loading branch information
Bjarte Johansen committed Nov 30, 2012
1 parent f83ace4 commit 38d20ba
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
13 changes: 13 additions & 0 deletions RDFoniOS/RDFSparqlQueryViewController.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
//
// RDFSparqlQueryViewController.h
// RDFoniOS
//
// Created by Bjarte Johansen on 11/30/12.
// Copyright (c) 2012 Bjarte Johansen. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface RDFSparqlQueryViewController : UIViewController<UITextViewDelegate>

@end
41 changes: 41 additions & 0 deletions RDFoniOS/RDFSparqlQueryViewController.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
//
// RDFSparqlQueryViewController.m
// RDFoniOS
//
// Created by Bjarte Johansen on 11/30/12.
// Copyright (c) 2012 Bjarte Johansen. All rights reserved.
//

#import "RDFSparqlQueryViewController.h"

@interface RDFSparqlQueryViewController () {

}


@end

@implementation RDFSparqlQueryViewController

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}

- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
}

- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}

@end

0 comments on commit 38d20ba

Please sign in to comment.