code stringlengths 1 2.01M | repo_name stringlengths 3 62 | path stringlengths 1 267 | language stringclasses 231
values | license stringclasses 13
values | size int64 1 2.01M |
|---|---|---|---|---|---|
<!DOCTYPE html>
<%@taglib prefix="in" uri="/WEB-INF/tld/decorator.tld"%>
<html>
<head>
<title>SiteMan</title>
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<in:headerInc incKendo="yes" />
<script type="text/javascript" src="resources/app/js/home.js"></scr... | 101j | SiteMan/WebContent/WEB-INF/views/home.jsp | Java Server Pages | gpl3 | 9,443 |
<!DOCTYPE html>
<%@taglib prefix="in" uri="/WEB-INF/tld/decorator.tld"%>
<html>
<head>
<title>SiteMan</title>
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<in:headerInc incKendo="yes" />
</head>
<body>
<in:header></in:header>
<in:leftPanel></in:lef... | 101j | SiteMan/WebContent/WEB-INF/views/grid.jsp | Java Server Pages | gpl3 | 3,431 |
<!DOCTYPE html>
<%@taglib prefix="in" uri="/WEB-INF/tld/decorator.tld"%>
<html>
<head>
<title>Project List</title>
<meta name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<in:headerInc incKendo="yes" />
<script type="text/javascript" src="resources/app/js/p... | 101j | SiteMan/WebContent/WEB-INF/views/project.jsp | Java Server Pages | gpl3 | 1,565 |
<html>
<head>
<link rel="stylesheet" href="includes/css/fullcalendar.css">
<link rel="stylesheet" href="includes/css/xcharts.min.css">
<link rel="stylesheet" href="includes/css/css.css">
<link rel="stylesheet" href="includes/css/application.css">
<!-- <link rel="stylesheet" href="includes/css/fullcalendar.pri... | 101j | SiteMan/WebContent/1.html | HTML | gpl3 | 14,164 |
var timerId = null;
$(document).ready(function() {
loadCalendar();
drawChart();
updateProgress();
// setUserImg();
loadBullitenBoard();
});
function loadCalendar() {
$('#calendar').fullCalendar({
header : {
left : 'prev,next today',
center : 'title',
right : 'month,basicWeek,basicDay'
},
editable... | 101j | SiteMan/WebContent/resources/app/js/dashboard.js | JavaScript | gpl3 | 4,045 |
$(document).ready(
function() {
initKendoGrid('orders', 'ordersTemplate',
'http://demos.telerik.com/kendo-ui/service/products');
$("#orders button[btnaction='addNew']").click(function() {
alert('Add new button fired');
});
$("#orders button[btnaction='edit']").click(function() {
... | 101j | SiteMan/WebContent/resources/app/js/project.js | JavaScript | gpl3 | 366 |
function toolbar_click() {
alert("Toolbar command is clicked!");
return false;
}
function initKendoGrid(containerId, toolbarId, dataUrl) {
var dataSource = new kendo.data.DataSource({
transport : {
read : {
url : dataUrl,
dataType : "jsonp"
}
},
serverPaging : false,
serverSorting ... | 101j | SiteMan/WebContent/resources/app/js/grid.js | JavaScript | gpl3 | 872 |
$(document).ready(function() {
$(".search-query").keyup(function(e) {
if (e.which == 13)
initQuickSearch($(this).val());
});
$(".search-query").focus(function() {
$(this).select();
});
loadLists();
loadSideBarContents();
});
function initQuickSearch(value) {
alert(value);
}
function loadLists() {
$("... | 101j | SiteMan/WebContent/resources/app/js/base.js | JavaScript | gpl3 | 1,507 |
$(document).ready(function() {
$("#scheduler").kendoScheduler({
date : new Date("2013/6/6"),
showWorkHours : true,
height : 500,
views : [ {
type : "day",
title : "D"
}, {
type : "week",
title : "W"
}, {
type : "month",
title : "M"
} ],
dataSource : [ {
id : 1,
... | 101j | SiteMan/WebContent/resources/app/js/home.js | JavaScript | gpl3 | 2,411 |
body {
color: #707070;
font: 12px 'Open Sans', HelveticaNeue, Helvetica, Arial;
}
.navbar-brand {
padding: 5px;
padding-left: 10px;
}
header .row {
margin: 0px;
}
a {
color: #78808a;
}
.navbar-inverse {
background-image: -moz-linear-gradient(center top, #9E7BFF, #BCA2F1);
background-size: 100% auto;
border... | 101j | SiteMan/WebContent/resources/app/css/sm.css | CSS | gpl3 | 20,432 |
/* line 1, /home/andrei/core-admin-release/core-admin/source/stylesheets/uniform_default.scss */
.uploader,.selector {
display: -moz-inline-box;
display: inline-block;
vertical-align: middle;
zoom: 1;
*display: inline;
}
/* line 2, /home/andrei/core-admin-release/core-admin/source/stylesheets/uniform_default.scss ... | 101j | SiteMan/WebContent/resources/app/css/application.css | CSS | gpl3 | 419,172 |
/* @font-face { */
/* font-family: 'Open Sans'; */
/* font-style: normal; */
/* font-weight: 400; */
/* src: local('Open Sans'), local('OpenSans'), */
/* url(https://themes.googleusercontent.com/static/fonts/opensans/v6/cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff) */
/* format('woff'); */
/* } */
/* @font... | 101j | SiteMan/WebContent/resources/app/css/css.css | CSS | gpl3 | 2,852 |
<div class="row">
<div id="orders" class="ra-section"></div>
</div>
<script id="template" type="text/x-kendo-template">
<div class="btn-group">
<button type="button" class="btn btn-default">
<span class="fa fa-plus-square-o fa-lg"></span>
</button>
<button type="but... | 101j | SiteMan/WebContent/resources/include/grid.inc | HTML | gpl3 | 1,116 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSDL_NC_07.DAO;
namespace CSDL_NC_07.BUS
{
public class THAMSO
{
public decimal SoTien_KhamBenh {get;set;}
}
}
| 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/BUS/THAMSO.cs | C# | asf20 | 235 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSDL_NC_07.DAO;
namespace CSDL_NC_07.BUS
{
public class CHITIET_TOATHUOC
{
public int CTBA_ID{get;set;}
public int Thuoc_ID{get;set;}
public int SoLuong{get;set;}
public decimal GiaBan{get;set;... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/BUS/CHITIET_TOATHUOC.cs | C# | asf20 | 335 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSDL_NC_07.DAO;
namespace CSDL_NC_07.BUS
{
public class BENHAN
{
public int BenhAn_ID { get; set; }
public int HSBN_ID { get; set; }
public DateTime NgayLap_BA { get; set; }
public int BacSi_LapB... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/BUS/BENHAN.cs | C# | asf20 | 349 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSDL_NC_07.DAO;
namespace CSDL_NC_07.BUS
{
public class HOADON_KHAMBENH
{
public int MaHD_KhamBenh{get;set;}
public int ThuNgan_ID {get;set;}
public int HSBN_ID {get;set;}
public DateTime NgayLap_... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/BUS/HOADON_KHAMBENH.cs | C# | asf20 | 394 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSDL_NC_07.DAO;
namespace CSDL_NC_07.BUS
{
public class LOAIPHONG
{
public int LoaiPhong_ID {get;set;}
public string LoaiPhong {get;set;}
public decimal GiaPhong {get;set;}
}
}
| 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/BUS/LOAIPHONG.cs | C# | asf20 | 310 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSDL_NC_07.DAO;
namespace CSDL_NC_07.BUS
{
public class KHOA
{
public int Khoa_ID {get;set;}
public string MaKhoa {get;set;}
public int TruongKhoa {get;set;}
public string TenKhoa {get;set;}
... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/BUS/KHOA.cs | C# | asf20 | 331 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSDL_NC_07.DAO;
namespace CSDL_NC_07.BUS
{
public class CHITIET_BENHAN
{
public int CTBA_ID { get; set; }
public int BenhAn_ID { get; set; }
public DateTime NgayLap_CTBA { get; set; }
public int ... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/BUS/CHITIET_BENHAN.cs | C# | asf20 | 479 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSDL_NC_07.DAO;
namespace CSDL_NC_07.BUS
{
public class CHITIETKHAM_DV_NOITRU
{
public int NKKB_ID {get;set;}
public int DichVu_ID{get;set;}
public decimal GiaSuDung { get; set; }
}
}
... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/BUS/CHITIETKHAM_DV_NOITRU.cs | C# | asf20 | 323 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSDL_NC_07.DAO;
namespace CSDL_NC_07.BUS
{
public class HOADONKHAM_DV_NGOAITRU
{
public int MaHD_DVNT{get;set;}
public int ThuNgan_ID{get;set;}
public int CTBA_ID{get;set;}
public int DichVu_ID... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/BUS/HOADONKHAM_DV_NGOAITRU.cs | C# | asf20 | 423 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSDL_NC_07.DAO;
namespace CSDL_NC_07.BUS
{
public class HOADON_XUATVIEN
{
public int MaHD_XV {get;set;}
public int ThuNgan_ID {get;set;}
public int HSNV_ID {get;set;}
public DateTime NgayLap_HD... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/BUS/HOADON_XUATVIEN.cs | C# | asf20 | 383 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSDL_NC_07.DAO;
namespace CSDL_NC_07.BUS
{
public class HOADON_TOATHUOC
{
public int MaHD_ToaThuoc {get;set;}
public int ThuNgan_ID {get;set;}
public int CTBA_ID {get;set;}
public DateTime Ngay... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/BUS/HOADON_TOATHUOC.cs | C# | asf20 | 389 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSDL_NC_07.DAO;
namespace CSDL_NC_07.BUS
{
public class BAOHIEM_YTE
{
public string SoTheBHYT { get; set; }
public int HSBN_ID { get; set; }
public DateTime NgayHetHan { get; set; }
}
}
| 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/BUS/BAOHIEM_YTE.cs | C# | asf20 | 317 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSDL_NC_07.DAO;
namespace CSDL_NC_07.BUS
{
public class THUOC
{
public int Thuoc_ID {get;set;}
public string MaThuoc {get;set;}
public string TenThuoc{get;set;}
public decimal GiaThuoc{get;set;... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/BUS/THUOC.cs | C# | asf20 | 370 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSDL_NC_07.DAO;
namespace CSDL_NC_07.BUS
{
public class NHANPHONG
{
public int HSNV_ID {get;set;}
public int Phong_ID {get;set;}
public DateTime NgayNhanPhong {get;set;}
}
}
| 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/BUS/NHANPHONG.cs | C# | asf20 | 304 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSDL_NC_07.DAO;
namespace CSDL_NC_07.BUS
{
public class DUNGCU_YTE
{
public int DungCu_ID {get;set;}
public string MaDungCu {get;set;}
public string TenDungCu {get;set;}
public decimal Gi... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/BUS/DUNGCU_YTE.cs | C# | asf20 | 355 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSDL_NC_07.DAO;
namespace CSDL_NC_07.BUS
{
public class HOSO_BENHNHAN
{
public int HSBN_ID { get; set; }
public string MaBenhNhan { get; set; }
public string DienThoai { get; set; }
... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/BUS/HOSO_BENHNHAN.cs | C# | asf20 | 556 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSDL_NC_07.DAO;
namespace CSDL_NC_07.BUS
{
public class DICHVU
{
public int DichVu_ID{get;set;}
public string MaDichVu{get;set;}
public string TenDichVu{get;set;}
public decimal GiaDichVu{get;s... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/BUS/DICHVU.cs | C# | asf20 | 338 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSDL_NC_07.DAO;
namespace CSDL_NC_07.BUS
{
public class NHATKI_KHAMBENH
{
public int NKKB_ID { get; set; }
public int HSNV_ID { get; set; }
public DateTime NgayKham { get; set; }
public string Tin... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/BUS/NHATKI_KHAMBENH.cs | C# | asf20 | 453 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSDL_NC_07.DAO;
namespace CSDL_NC_07.BUS
{
public class PHONG
{
public int Phong_ID {get;set;}
public string MaPhong {get;set;}
public int LoaiPhong_ID {get;set;}
}
}
| 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/BUS/PHONG.cs | C# | asf20 | 297 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSDL_NC_07.DAO;
namespace CSDL_NC_07.BUS
{
public class HOSO_NHAPVIEN
{
public int HSNV_ID { get; set; }
public int CTBA_ID { get; set; }
public int BacSi_DieuTri { get; set; }
public DateTime ... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/BUS/HOSO_NHAPVIEN.cs | C# | asf20 | 406 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSDL_NC_07.DAO;
namespace CSDL_NC_07.BUS
{
public class CHITIETKHAM_DV_NGOAITRU
{
public int CTBA_ID {get;set;}
public int DichVu_ID{get;set;}
public decimal GiaSuDung { get; set; }
}
... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/BUS/CHITIETKHAM_DV_NGOAITRU.cs | C# | asf20 | 325 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSDL_NC_07.DAO;
namespace CSDL_NC_07.BUS
{
public class CHITIET_DONTHUOC_DIEUTRI
{
public int NKKB_ID{get;set;}
public int Thuoc_ID{get;set;}
public int SoLuong{get;set;}
public decimal GiaBan{... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/BUS/CHITIET_DONTHUOC_DIEUTRI.cs | C# | asf20 | 343 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSDL_NC_07.DAO;
namespace CSDL_NC_07.BUS
{
public class CHITIET_SUDUNG_DUNGCU
{
public int NKKB_ID { get; set; }
public int DungCu_ID { get; set; }
public int SoLuong { get; set; }
public decimal GiaSuDu... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/BUS/CHITIET_SUDUNG_DUNGCU.cs | C# | asf20 | 347 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSDL_NC_07.DAO;
namespace CSDL_NC_07.BUS
{
public class THUNGAN
{
public int ThuNgan_ID{get;set;}
public string MaThuNgan{get;set;}
public string TenThuNgan{get;set;}
public string MatKhau{get;... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/BUS/THUNGAN.cs | C# | asf20 | 411 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSDL_NC_07.DAO;
namespace CSDL_NC_07.BUS
{
public class HOADON_TAMUNG
{
public int MaHD_TU {get;set;}
public int ThuNgan_ID {get;set;}
public int HSNV_ID {get;set;}
public DateTime NgayLap_HDTU... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/BUS/HOADON_TAMUNG.cs | C# | asf20 | 381 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using CSDL_NC_07.DAO;
namespace CSDL_NC_07.BUS
{
public class BACSI
{
public int BacSi_ID { get; set; }
public string MaBacSi { get; set; }
public int Khoa_ID { get; set; }
public... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/BUS/BACSI.cs | C# | asf20 | 501 |
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTi... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/Properties/AssemblyInfo.cs | C# | asf20 | 1,432 |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using CSDL_NC_07.DAO;
using CSDL_NC_07.BUS;
using System.Data.SqlClient;
namespace CSDL_NC_07.GUI.other
{
public par... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/GUI/other/MHXemTieuSuBenh.cs | C# | asf20 | 1,570 |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using CSDL_NC_07.DAO;
using System.Data.SqlClient;
namespace CSDL_NC_07.GUI.other
{
public partial class MHThemHSNV :... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/GUI/other/MHThemHSNV.cs | C# | asf20 | 5,608 |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using CSDL_NC_07.DAO;
using System.Data.SqlClient;
using CSDL_NC_07.BUS;
namespace CSDL_NC_07.GUI.other
{
public par... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/GUI/other/MHThemHDTU.cs | C# | asf20 | 6,292 |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using CSDL_NC_07.BUS;
using CSDL_NC_07.DAO;
using System.Data.SqlClient;
using System.Globalization;
namespace CSDL_NC_07... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/GUI/other/MHThemHDXV.cs | C# | asf20 | 4,424 |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using CSDL_NC_07.BUS;
using CSDL_NC_07.DAO;
using System.Security.Cryptography;
namespace CSDL_NC_07.GUI.other
{
pub... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/GUI/other/MHDangNhap.cs | C# | asf20 | 5,856 |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace CSDL_NC_07.GUI.other
{
public partial class MHQuanLy : UserControl
{
private Bitmap bmpBackgrou... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/GUI/other/MHQuanLy.cs | C# | asf20 | 3,479 |
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using CSDL_NC_07.BUS;
namespace CSDL_NC_07.GUI
{
public partial class frm_main : Form
{
private BACSI ba... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/GUI/frm_main.cs | C# | asf20 | 8,128 |
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Text;
using System.IO;
namespace CSDL_NC_07.DAO
{
class DataProvider
{
public string connectionString { get; set; }
private SqlConnection sqlConnection =... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/DAO/DataProvider.cs | C# | asf20 | 8,858 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace CSDL_NC_07
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{... | 07csdlnc3b1db3e73c5419de2f84fb508672e820 | trunk/CSDL_NC_07/CSDL_NC_07/Program.cs | C# | asf20 | 509 |
# General init
# /!\ Don't forget to update 'CMakeLists.txt' too /!\
AC_INIT([libnfc],[1.7.1],[nfc-tools@googlegroups.com])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADER(config.h)
# GIT revison
GIT_REVISION=`which git > /dev/null && git describe`
if test x"$GIT_REVISION" != x""; then
AC_DEFINE_UNQUOTED([GIT_REVISI... | 1060840728-lvgang | configure.ac | M4Sugar | lgpl | 5,852 |
#include "contrib/windows.h"
#cmakedefine PACKAGE_NAME "@PACKAGE_NAME@"
#cmakedefine PACKAGE_VERSION "@PACKAGE_VERSION@"
#cmakedefine PACKAGE_STRING "@PACKAGE_STRING@"
#cmakedefine LIBNFC_SYSCONFDIR "@LIBNFC_SYSCONFDIR@"
| 1060840728-lvgang | cmake/config_windows.h.cmake | CMake | lgpl | 222 |
#cmakedefine PACKAGE_NAME "@PACKAGE_NAME@"
#cmakedefine PACKAGE_VERSION "@PACKAGE_VERSION@"
#cmakedefine PACKAGE_STRING "@PACKAGE_STRING@"
#cmakedefine _XOPEN_SOURCE @_XOPEN_SOURCE@
#cmakedefine SYSCONFDIR "@SYSCONFDIR@"
| 1060840728-lvgang | cmake/config_posix.h.cmake | CMake | lgpl | 221 |
SET(LIBNFC_DRIVER_ACR122_PCSC OFF CACHE BOOL "Enable ACR122 support (Depends on PC/SC)")
SET(LIBNFC_DRIVER_ACR122_USB ON CACHE BOOL "Enable ACR122 support (Direct USB connection)")
SET(LIBNFC_DRIVER_ACR122S ON CACHE BOOL "Enable ACR122S support (Use serial port)")
SET(LIBNFC_DRIVER_ARYGON ON CACHE BOOL "Enable ARYGON s... | 1060840728-lvgang | cmake/modules/LibnfcDrivers.cmake | CMake | lgpl | 2,579 |
# This CMake script wants to use libusb functionality, therefore it looks
# for libusb include files and libraries.
#
# Operating Systems Supported:
# - Unix (requires pkg-config)
# Tested with Ubuntu 9.04 and Fedora 11
# - Windows (requires MinGW)
# Tested with Windows XP/Windows 7
#
# This should work for both ... | 1060840728-lvgang | cmake/modules/FindLIBUSB.cmake | CMake | lgpl | 2,081 |
# - Run Doxygen
#
# Adds a doxygen target that runs doxygen to generate the html
# and optionally the LaTeX API documentation.
# The doxygen target is added to the doc target as dependency.
# i.e.: the API documentation is built with:
# make doc
#
# USAGE: GLOBAL INSTALL
#
# Install it with:
# cmake ./ && sudo make i... | 1060840728-lvgang | cmake/modules/UseDoxygen.cmake | CMake | lgpl | 2,841 |
EXTRA_DIST = \
COPYING-CMAKE-SCRIPTS \
FindLIBUSB.cmake \
FindPCSC.cmake \
FindPCRE.cmake \
UseDoxygen.cmake \
LibnfcDrivers.cmake
| 1060840728-lvgang | cmake/modules/Makefile.am | Makefile | lgpl | 137 |
# This CMake script wants to use pcre functionality needed for windows
# compilation. However, since PCRE isn't really a default install location
# there isn't much to search.
#
# Operating Systems Supported:
# - Windows (requires MinGW)
# Tested with Windows XP/Windows 7
#
# This should work for both 32 bit and 64 ... | 1060840728-lvgang | cmake/modules/FindPCRE.cmake | CMake | lgpl | 1,215 |
# - Try to find the PC/SC smart card library
# Once done this will define
#
# PCSC_FOUND - system has the PC/SC library
# PCSC_INCLUDE_DIRS - the PC/SC include directory
# PCSC_LIBRARIES - The libraries needed to use PC/SC
#
# Author: F. Kooman <fkooman@tuxed.net>
# Version: 20101019
#
FIND_PACKAGE (PkgConfig)
IF(... | 1060840728-lvgang | cmake/modules/FindPCSC.cmake | CMake | lgpl | 967 |
INCLUDE(BundleUtilities)
# set bundle to the full path of the executable already existing in the install tree
SET(bundle "${CMAKE_INSTALL_PREFIX}/bin/nfc-list@CMAKE_EXECUTABLE_SUFFIX@")
# set other_libs to a list of additional libs that cannot be reached by dependency analysis
SET(other_libs "")
SET(dirs "@LIBUSB_LI... | 1060840728-lvgang | cmake/FixBundle.cmake.in | CMake | lgpl | 404 |
SUBDIRS = modules
EXTRA_DIST = \
FixBundle.cmake.in \
config_posix.h.cmake \
config_windows.h.cmake
| 1060840728-lvgang | cmake/Makefile.am | Makefile | lgpl | 119 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/target-subr.c | C | lgpl | 26,384 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/log-internal.h | C | lgpl | 1,536 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/mirror-subr.c | C | lgpl | 3,312 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/conf.h | C | lgpl | 1,221 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/nfc-internal.c | C | lgpl | 7,447 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/log.h | C | lgpl | 4,109 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/conf.c | C | lgpl | 8,154 |
# Windows MinGW workarounds
IF(WIN32)
SET(WINDOWS_SOURCES ../contrib/win32/stdlib)
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/../contrib/win32)
# Add in the rc for version information in the dll
LIST(APPEND WINDOWS_SOURCES ${CMAKE_CURRENT_BINARY_DIR}/../windows/libnfc.rc)
ENDIF(WIN32)
# Library's chips
S... | 1060840728-lvgang | libnfc/CMakeLists.txt | CMake | lgpl | 3,718 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/nfc-internal.h | C | lgpl | 8,735 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/nfc.c | C | lgpl | 51,808 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/target-subr.h | C | lgpl | 2,271 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/log-internal.c | C | lgpl | 1,417 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/log.c | C | lgpl | 2,767 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/nfc-emulation.c | C | lgpl | 2,513 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/nfc-device.c | C | lgpl | 2,170 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/iso7816.h | C | lgpl | 1,704 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/mirror-subr.h | C | lgpl | 1,446 |
SUBDIRS = chips buses drivers .
# set the include path found by configure
AM_CPPFLAGS = $(all_includes) $(LIBNFC_CFLAGS) -DSYSCONFDIR='"$(sysconfdir)"'
lib_LTLIBRARIES = libnfc.la
libnfc_la_SOURCES = \
conf.c \
iso14443-subr.c \
mirror-subr.c \
nfc.c \
nfc-device.c \
nfc-emulation.... | 1060840728-lvgang | libnfc/Makefile.am | Makefile | lgpl | 1,238 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/drivers/acr122_usb.c | C | lgpl | 29,157 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/drivers/arygon.h | C | lgpl | 1,356 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/drivers/pn532_uart.h | C | lgpl | 1,356 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tarti?re
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/drivers/pn532_i2c.h | C | lgpl | 1,431 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/drivers/pn532_spi.c | C | lgpl | 21,751 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/drivers/arygon.c | C | lgpl | 20,371 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/drivers/pn532_spi.h | C | lgpl | 1,384 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/drivers/acr122_pcsc.c | C | lgpl | 17,160 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/drivers/pn53x_usb.c | C | lgpl | 26,448 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tarti?re
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/drivers/pn532_i2c.c | C | lgpl | 18,998 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/drivers/acr122s.c | C | lgpl | 19,716 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/drivers/acr122s.h | C | lgpl | 1,301 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/drivers/pn532_uart.c | C | lgpl | 17,837 |
# set the include path found by configure
AM_CPPFLAGS = $(all_includes) $(LIBNFC_CFLAGS)
noinst_LTLIBRARIES = libnfcdrivers.la
libnfcdrivers_la_SOURCES =
libnfcdrivers_la_CFLAGS = @DRIVERS_CFLAGS@ -I$(top_srcdir)/libnfc -I$(top_srcdir)/libnfc/buses
libnfcdrivers_la_LIBADD =
if DRIVER_ACR122_PCSC_ENABLED
libnfcdriver... | 1060840728-lvgang | libnfc/drivers/Makefile.am | Makefile | lgpl | 1,206 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/drivers/pn53x_usb.h | C | lgpl | 1,338 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/drivers/acr122_usb.h | C | lgpl | 1,384 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/drivers/acr122_pcsc.h | C | lgpl | 1,368 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/iso14443-subr.c | C | lgpl | 3,747 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/chips/pn53x.c | C | lgpl | 121,603 |
# set the include path found by configure
AM_CPPFLAGS = $(all_includes) $(LIBNFC_CFLAGS)
noinst_LTLIBRARIES = libnfcchips.la
libnfcchips_la_SOURCES = pn53x.c pn53x.h pn53x-internal.h
libnfcchips_la_CFLAGS = -I$(top_srcdir)/libnfc
| 1060840728-lvgang | libnfc/chips/Makefile.am | Makefile | lgpl | 233 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/chips/pn53x.h | C | lgpl | 17,645 |
/*-
* Free/Libre Near Field Communication (NFC) library
*
* Libnfc historical contributors:
* Copyright (C) 2009 Roel Verdult
* Copyright (C) 2009-2013 Romuald Conty
* Copyright (C) 2010-2012 Romain Tartière
* Copyright (C) 2010-2013 Philippe Teuwen
* Copyright (C) 2012-2013 Ludovic Rousseau
* See AUTHORS... | 1060840728-lvgang | libnfc/chips/pn53x-internal.h | C | lgpl | 16,012 |